home *** CD-ROM | disk | FTP | other *** search
/ CD Ware Multimedia 1995 May / cd Ware (Juegos) Epimundo.iso / WIN / VB_TOOLS / RWDEMO.ZIP / RWDEMO.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-02-11  |  1.1 KB  |  38 lines

  1. VERSION 2.00
  2. Begin Form frmMain 
  3.    Caption         =   "Resource Workshop Demo"
  4.    ClientHeight    =   2250
  5.    ClientLeft      =   1290
  6.    ClientTop       =   1815
  7.    ClientWidth     =   4290
  8.    Height          =   2685
  9.    Icon            =   RWDEMO.FRX:0000
  10.    Left            =   1215
  11.    LinkTopic       =   "Form1"
  12.    ScaleHeight     =   150
  13.    ScaleMode       =   3  'Pixel
  14.    ScaleWidth      =   286
  15.    Top             =   1455
  16.    Width           =   4440
  17.    Begin CommandButton cmdClose 
  18.       Caption         =   "Close"
  19.       Default         =   -1  'True
  20.       Height          =   375
  21.       Left            =   1290
  22.       TabIndex        =   1
  23.       Top             =   1410
  24.       Width           =   1575
  25.    End
  26.    Begin Label lblInfo 
  27.       Caption         =   "This VB app has 3 icons and version info embedded in it via Borland's Resource Workshop. That's all. It doesn't really do anything."
  28.       Height          =   855
  29.       Left            =   330
  30.       TabIndex        =   0
  31.       Top             =   210
  32.       Width           =   3675
  33.    End
  34. Option Explicit
  35. Sub cmdClose_Click ()
  36.     Unload Me
  37. End Sub
  38.